type net/http.http2clientConnPool

14 uses

	net/http (current package)
		h2_bundle.go#L762: 	_ http2clientConnPoolIdleCloser = (*http2clientConnPool)(nil)
		h2_bundle.go#L767: type http2clientConnPool struct {
		h2_bundle.go#L779: func (p *http2clientConnPool) GetClientConn(req *Request, addr string) (*http2ClientConn, error) {
		h2_bundle.go#L788: func (p *http2clientConnPool) getClientConn(req *Request, addr string, dialOnMiss bool) (*http2ClientConn, error) {
		h2_bundle.go#L839: 	p *http2clientConnPool
		h2_bundle.go#L849: func (p *http2clientConnPool) getStartDialLocked(ctx context.Context, addr string) *http2dialCall {
		h2_bundle.go#L886: func (p *http2clientConnPool) addConnIfNeeded(key string, t *http2Transport, c *tls.Conn) (used bool, err error) {
		h2_bundle.go#L917: 	p    *http2clientConnPool
		h2_bundle.go#L939: func (p *http2clientConnPool) addConnLocked(key string, cc *http2ClientConn) {
		h2_bundle.go#L955: func (p *http2clientConnPool) MarkDead(cc *http2ClientConn) {
		h2_bundle.go#L973: func (p *http2clientConnPool) closeIdleConnections() {
		h2_bundle.go#L1007: type http2noDialClientConnPool struct{ *http2clientConnPool }
		h2_bundle.go#L7417: 	connPool := new(http2clientConnPool)
		h2_bundle.go#L7468: 		t.connPoolOrDef = &http2clientConnPool{t: t}